home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000101_news@columbia.edu _Sat May 5 12:37:45 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from menyapa.cc.columbia.edu (menyapa.cc.columbia.edu [128.59.59.38])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA03297
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Sat, 5 May 2001 12:37:45 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by menyapa.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA25720
  7.     for <kermit.misc@smtp.cc.columbia.edu>; Sat, 5 May 2001 12:37:41 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA05934
  10.     for kermit.misc@watsun.cc.columbia.edu; Sat, 5 May 2001 12:36:59 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: IBM 3705 EP Questions
  14. Date: 5 May 2001 16:36:59 GMT
  15. Organization: Columbia University
  16. Message-ID: <9d1a7b$5pb$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <3af33bb3.6404352@news.mw.mediaone.net>,
  20. Jim Howell <jhowell39@mediaone.net> wrote:
  21. : I need to be able to connect PC's running NT to an old IBM system that
  22. : is using 3705 EP with TWX TTY and has CICS talking to BTAM, whew!
  23. : Since the IBM stuff is unsupported and will not be upgraded in the
  24. : foreseeable future I'm finding myself up the proverbial creek.  Does
  25. : anyone know of any software that might get this done?  The only hint
  26. : that I've been able to get from the web is that kermit scripts might
  27. : do it, but I'd certainly appreciate anyone's input at this point.
  28.  
  29. (And then later...)
  30. :     Unfortunately we can't replace anything.  The 3705 sits at a
  31. : remote site that we want to connect to.  Typically, for EDI I would
  32. : use ProComm to establish a dial-up and go from there.  I did submit an
  33. : e-mail to the Kermit Project enquiring whether the Kermit 95 product
  34. : would support the TWX TTY emulation.  If it does, then we would be
  35. : more than happy to learn about kermit scripting<g>.  
  36. It's not a question of scripting.  The short answer is: Kermit will
  37. probably work, but you'll have to try it to make sure.  The long answer
  38. follows.
  39.  
  40. We had a 3705 here twenty-some years ago, and had the recently mentioned
  41. Hazeltine 2000 terminals attached to its ASCII ports.  The H2000 is a
  42. regular plain old ASCII terminal, so if it can be used, so can Kermit.
  43. Note that terminal emulation does not even enter into the equation.
  44. This type of connection is half-duplex, line-at-a-time, 7-bits-with-parity.
  45. There is nothing terminal-specific about it.
  46.  
  47. Therefore you should be able to use any terminal emulator that supports
  48. half duplex, local echo, 7x1 (where x usually = M), and the appropriate
  49. speeds (usually 1200, 4800, or 9600 bps).
  50.  
  51. The interesting part comes if you also want to transfer files over the
  52. connection.  In this case, I would venture to say that Kermit is
  53. uniquely suited for this task, since operation through 3705 linemode
  54. connections was one of the original design constraints for Kermit
  55. protocol and software.
  56.  
  57. Reliable file transfer (i.e. with error detection and correction) with
  58. the mainframe requires the CICS version of Kermit on the far end:
  59.  
  60.   http://www.columbia.edu/kermit/k370.html
  61.  
  62. Unreliable (non-error-checked) transfers can also be done in case the
  63. mainframe does not have CICS Kermit (but I would not recommend
  64. unreliable file-transfer methods for EDI applications).
  65.  
  66. A special group of settings is used on the PC's Kermit program, usually
  67. something like:
  68.  
  69.   set part mark
  70.   set duplex half
  71.   set handshake xon
  72.   set prefixing all
  73.   set window 1
  74.  
  75. These are explained the Kermit manuals and books.  We used Kermit in this
  76. environment for many years, until the 3705s were phased out, but with a
  77. different OS on the mainframe (OS/MVT and then VM/CMS, rather than CICS).
  78.  
  79. - Frank